TouchableViews in OS X
----------------------

Install SDL (see also http://content.gpwiki.org/index.php/SDL:Tutorials:Setup)

	* Get run-time library from www.libsdl.org
	* Follow instructions for installing the SDL.framework

Also, be sure that SDLMain.h and SDLMain.m is in your path.

To build from the command line, your gcc line will look something like this:

gcc -I/Library/Frameworks/SDL.framework/Headers MyProgram.c SDLmain.m -framework SDL -framework Cocoa -std=c99

The compiled program will be named "a.out". Run it with the command "./a.out"

Other comments:

In "drawchar5": replace "char c[15]" with "Uint8 c[15]" in the parameter list to prevent a warning.



